Cardápio Digital - Pizzaria

Carrinho de Compras

Total: R$ 0,00
``` }`; } function updateQuantity(index, quantity) { cart[index].quantity = parseInt(quantity); renderCart(); } function removeFromCart(index) { cart.splice(index, 1); renderCart(); } function updateObservation(index, observation) { cart[index].observation = observation; } function toggleCart(show = false) { const cartElement = document.getElementById('carrinho'); if (show) { cartElement.style.display = 'block'; } else { cartElement.style.display = cartElement.style.display === 'block' ? 'none' : 'block'; } } function checkout() { if (cart.length === 0) { alert('Seu carrinho está vazio!'); return; } let message = 'Olá, gostaria de fazer o seguinte pedido:\n\n'; cart.forEach(cartItem => { message += `- ${cartItem.item} (Quantidade: ${cartItem.quantity}): R$ ${(cartItem.price * cartItem.quantity).toFixed(2)}\n`; if (cartItem.observation) { message += ` Observações: ${cartItem.observation}\n`; } }); const total = cart.reduce((acc, item) => acc + item.price * item.quantity, 0); message += `\nTotal: R$ ${total.toFixed(2)}`; const phoneNumber = '44991734277'; const whatsappUrl = `https://wa.me/55${phoneNumber}?text=${encodeURIComponent(message)}`; window.open(whatsappUrl, '_blank'); } // Função para exibir o conteúdo principal após o carregamento window.onload = function() { document.body.style.opacity = '1'; // Define a opacidade para 1 para uma transição suave };